home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / ADB.idl next >
Text File  |  1996-05-01  |  2KB  |  74 lines

  1. /*
  2.      File:        ADB.idl
  3.  
  4.      Contains:    ADB Interface for System 8
  5.  
  6.      Version:    Technology:    
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __ADB_IDL__
  19. #define __ADB_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27. #ifndef __IOITERATOR_IDL__
  28. #include <IOIterator.idl>
  29. #endif
  30.  
  31. #ifdef __SOMIDL__
  32.  
  33. #if FOR_SYSTEM8_PREEMPTIVE
  34. /*
  35. ------------------------------------------------------------------------------------
  36.   Types
  37. ------------------------------------------------------------------------------------
  38. */
  39. typedef SOMLargeStruct            ADBIOIteratorData;            /* Derived from a struct of 23 bytes in size */
  40.  
  41. typedef UInt32                    ADBConnectionID;
  42.  
  43. typedef SOMLargeStruct            ADBRegisterContents;        /* Derived from a struct of 12 bytes in size */
  44.  
  45. /*
  46. ------------------------------------------------------------------------------------
  47.   Calls
  48. ------------------------------------------------------------------------------------
  49. */
  50. /* ADBGetRegister sends a Talk command over the wire*/
  51. /*
  52.  ADBSetRegister sends a Listen command over the wire
  53.  Note, only allowed for registers 0, 1, and 2
  54.  Use the specific calls to set individual fields of register 3
  55. */
  56. /*
  57.  for ADBGetStatusBits and ADBSetStatusBits,
  58.  the 4 most significant bits of the bits parameter
  59.  contain the 4 most significant bits of the first byte of device register 3
  60. */
  61. /* see the Guide to Macintosh Family Hardware for more info on an ADB device activator*/
  62. /*
  63. ------------------------------------------------------------------------------------
  64.   status codes
  65. ------------------------------------------------------------------------------------
  66. */
  67. /* ADB assigned range is -30279 to -30260 inclusive*/
  68. #endif
  69.  
  70. #endif /* __SOMIDL__ */
  71.  
  72. #endif /* __ADB_IDL__ */
  73.  
  74.